Microsoft Cognitive Language Service - Analyze Conversations (preview:2023-04-15)

2025/07/24 • 4 deleted methods

ConversationAnalysis_AnalyzeConversation (removed)
Description Analyzes the input conversation utterance.
Reference Link ¶

⚼ Request

POST:  /:analyze-conversations
{
api-version: string ,
body:
{
kind: enum ,
}
,
}

⚐ Response (200)

{
kind: enum ,
}

⚐ Response (default)

{
$headers:
{
x-ms-error-code: string ,
}
,
$schema:
{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
,
}
AnalyzeConversation_SubmitJob (removed)
Description Submit a collection of conversations for analysis. Specify one or more unique tasks to be executed.
Reference Link ¶

⚼ Request

POST:  /analyze-conversations/jobs
{
api-version: string ,
body:
{
displayName: string ,
analysisInput:
{
conversations:
[
{
id: string ,
language: string ,
modality: enum ,
domain: enum ,
}
,
]
,
}
,
tasks:
[
{
kind: enum ,
}
,
]
,
}
,
}

⚐ Response (202)

{
operation-location: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
AnalyzeConversation_JobStatus (removed)
Description Get the status of an analysis job. A job may consist of one or more tasks. Once all tasks are succeeded, the job will transition to the succeeded state and results will be available for each task.
Reference Link ¶

⚼ Request

GET:  /analyze-conversations/jobs/{jobId}
{
api-version: string ,
jobId: string ,
showStats: boolean ,
}

⚐ Response (200)

{
$schema: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
AnalyzeConversation_CancelJob (removed)
Description Cancel a long-running Text Analysis conversations job.
Reference Link ¶

⚼ Request

POST:  /analyze-conversations/jobs/{jobId}:cancel
{
api-version: string ,
jobId: string ,
}

⚐ Response (202)

{
operation-location: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}